home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DLLSKEL.PAK / DLLSKEL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  750b  |  29 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   dllskel.h
  9. //
  10. //  PURPOSE:
  11. //    Contains declarations for use by applications and other DLLs that
  12. //    link to this DLL.  It is not used to build the DLL itself.
  13. //
  14.  
  15.  
  16. #ifndef INC_DLLSKEL_H
  17. #define INC_DLLSKEL_H
  18.  
  19. #include <windows.h>
  20.  
  21. #define DLLIMPORT __declspec(dllimport)
  22.  
  23.  
  24. DLLIMPORT BOOL WINAPI DLLFunction1 (HWND, LPSTR);
  25. DLLIMPORT float _stdcall DLLFunction2 (HWND);
  26.  
  27.  
  28. #endif  // INC_DLLSKEL_H
  29.